home *** CD-ROM | disk | FTP | other *** search
- /* strip zero bytes */
- /* © by Stefan Haubenthal 1996 */
- name="Say.RAW"
- call open(in,name)
- buffer1=strip(readch(in,50000),L,"00"x)
- buffer2=strip(readch(in,50000),T,"00"x)
- if buffer2="" then buffer1=strip(buffer1,T,"00"x)
- call close(in)
- call open(out,name,W)
- call writech(out,buffer1||buffer2)
-